|
|
|
BlueCielo Meridian Global Collaboration Framework 2012 SP1 Administrator's Guide | BlueCielo ECM Solutions |
The following procedure is appropriate if a prior version of the GCF is installed, you have not customized the GCF VBScript code, and you want to update the existing code to work with GCF 2012. If you have already customized the GCF VBScript code and you want to integrate your custom code with the GCF 2012 VBScript code, see Integrating custom GCF script with GCF 2012.
Note If the GcfEvents extension was registered as described in Registering the Meridian Enterprise extensions, unregister it before proceeding. For instructions, see theBlueCielo Meridian Enterprise Configuration Guide.
Note When performing this procedure, you might want to refer to the new GCF VBScript file <Setup>\Meridian\Configuration\MainScript_WithEvents.bas provided in the GCF 2012 distribution package.
To update the existing VBScript code of a vault, read what to change below and modify your custom script accordingly:
GCFCallRemote
GCFInitiateTransfer
GCFCallRemote
MergeDelimitedStrings
GCFInitiateTransfer
GCFClearTransit
GCFDocumentStatus
GCFDocumentWpID
SetModifiedBy
GCFGetLog
GCFSetLog
SetLock
SetLockRemote
Replace the following line:
Set objGCFSupport = AMCreateObject("BlueCieloECM.GcfSupport")
with:
Set objGCFSupport = AMCreateObject("BlueCieloECM.GcfSupport")
Add the following new line before the line that reads Set to Nothing:
objGCFSupport.Dispose
Old line:
objGCFSupport.CallRemote3
New line:
objGCFSupport.CallRemote
Old line:
objGCFSupport.ClearInTransitMain(GlobalIDs, RemoteShare, bInWA)
New line:
objGCFSupport.ClearInTransit(GlobalIDs, RemoteShare)
Function SetLockRemote(LockID, Comment)
Dim objGCFSupport
Set objGCFSupport = AMCreateObject("BlueCieloECM.GcfSupport", False)
SetLockRemote = objGCFSupport.SetLockIDRemote(Document.ID, LockID, Comment)
objGCFSupport.Dispose
Set objGCFSupport = Nothing
End Function
Related concepts
Related tasks
Integrating custom GCF script with GCF 2012
Understanding common conflicts
Suppressing custom code during GCF operations
Controlling the GCF with VBScript
Hiding the Collaboration Status property page
Copyright © 2000-2012 BlueCielo ECM Solutions |